home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / run_feature_9.e < prev    next >
Text File  |  2000-03-25  |  5KB  |  188 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class RUN_FEATURE_9
  17.  
  18. inherit RUN_FEATURE;
  19.  
  20. creation make
  21.  
  22. feature
  23.  
  24.    base_feature: DEFERRED_ROUTINE;
  25.  
  26.    arguments: FORMAL_ARG_LIST;
  27.  
  28.    result_type: TYPE;
  29.  
  30.    require_assertion: RUN_REQUIRE;
  31.  
  32.    ensure_assertion: E_ENSURE;
  33.  
  34.    is_deferred: BOOLEAN is true;
  35.  
  36.    is_pre_computable: BOOLEAN is false;
  37.  
  38.    is_static: BOOLEAN is false;
  39.  
  40.    can_be_dropped: BOOLEAN is false;
  41.  
  42.    is_once_procedure: BOOLEAN is false;
  43.  
  44.    is_once_function: BOOLEAN is false;
  45.  
  46.    routine_body: COMPOUND is
  47.       do
  48.       end;
  49.  
  50.    rescue_compound: COMPOUND is
  51.       do
  52.       end;
  53.  
  54.    afd_check is
  55.       do
  56.          routine_afd_check;
  57.          small_eiffel.afd_check_deferred(Current);
  58.       end;
  59.  
  60.    mapping_c is
  61.       do
  62.          if run_control.no_check then
  63.             if result_type = Void then
  64.                default_mapping_procedure;
  65.             else
  66.                default_mapping_function;
  67.             end;
  68.          elseif result_type /= Void then
  69.             result_type.c_initialize;
  70.          end;
  71.       end;
  72.  
  73.    c_define is
  74.       do
  75.          if run_control.no_check then
  76.             define_prototype;
  77.             c_define_opening;
  78.             cpp.put_error0("Deferred routine called.");
  79.             c_define_closing;
  80.             cpp.put_string(fz_12);
  81.             c_frame_descriptor;
  82.          end;
  83.       end;
  84.  
  85.    local_vars: LOCAL_VAR_LIST is do end;
  86.  
  87.    static_value_mem: INTEGER is do end;
  88.  
  89. feature {CALL_PROC_CALL}
  90.  
  91.    collect_c_tmp is
  92.       local
  93.          rt: TYPE;
  94.       do
  95.          rt := result_type;
  96.          if rt /= Void and then rt.is_user_expanded then
  97.             if rt.is_dummy_expanded then
  98.             else
  99.                cpp.se_tmp_add(Current);
  100.             end;
  101.          end;
  102.       end;
  103.  
  104. feature {ADDRESS_OF_POOL}
  105.  
  106.    address_of_c_define(caller: ADDRESS_OF) is
  107.       do
  108.          eh.add_position(caller.start_position);
  109.          eh.add_position(start_position);
  110.          fatal_error("Cannot access address of a deferred routine.");
  111.       end;
  112.  
  113. feature {ADDRESS_OF}
  114.  
  115.    address_of_c_mapping is
  116.       do
  117.       end;
  118.  
  119. feature {NONE}
  120.  
  121.    initialize is
  122.       do
  123.          result_type := base_feature.result_type;
  124.          arguments := base_feature.arguments;
  125.          if result_type /= Void then
  126.             if result_type.is_like_argument then
  127.                if not arguments.is_runnable(current_type) then
  128.                   !!arguments.with(arguments,current_type);
  129.                end;
  130.                result_type := result_type.to_runnable(current_type);
  131.             else
  132.                result_type := result_type.to_runnable(current_type);
  133.                if arguments /= Void then
  134.                   if not arguments.is_runnable(current_type) then
  135.                      !!arguments.with(arguments,current_type);
  136.                   end;
  137.                end;
  138.             end;
  139.          elseif arguments /= Void then
  140.             if not arguments.is_runnable(current_type) then
  141.                !!arguments.with(arguments,current_type);
  142.             end;
  143.          end;
  144.          if small_eiffel.short_flag then
  145.             require_assertion := run_require;
  146.             ensure_assertion := run_ensure;
  147.          end;
  148.       end;
  149.  
  150.    compute_use_current is
  151.       do
  152.          use_current_state := ucs_true;
  153.       end;
  154.  
  155. feature {RUN_CLASS}
  156.  
  157.    jvm_field_or_method is
  158.       do
  159.       end;
  160.  
  161. feature
  162.  
  163.    mapping_jvm is
  164.       do
  165.       end;
  166.  
  167. feature {JVM}
  168.  
  169.    jvm_define is
  170.       do
  171.       end;
  172.  
  173. feature {NONE}
  174.  
  175.    compute_stupid_switch(r: ARRAY[RUN_CLASS]) is
  176.       do
  177.          stupid_switch_state := ucs_false;
  178.       end;
  179.  
  180.    update_tmp_jvm_descriptor is
  181.       do
  182.          routine_update_tmp_jvm_descriptor;
  183.       end;
  184.  
  185.    stupid_switch_comment: STRING is "SSDRRF9";
  186.  
  187. end -- RUN_FEATURE_9
  188.